home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Text⁄Files / File List 14 / Stack.h < prev    next >
Text File  |  1990-09-14  |  340b  |  20 lines

  1. /*
  2.     FileList 1.4
  3.     "Stack.h"
  4. */
  5.  
  6. #define STACKERROR    (unsigned long)0xFFFFFFFF
  7. #define STACKSIZE    128
  8.  
  9. typedef unsigned long STACKELEMENT;
  10.  
  11. typedef struct {
  12.     STACKELEMENT *pointer;
  13.     STACKELEMENT *max;
  14.     STACKELEMENT stack[STACKSIZE];
  15. } STACK;
  16.  
  17. void InitStack (STACK *);
  18. STACKELEMENT PopStack (STACK *);
  19. short PushStack (STACK *, STACKELEMENT);
  20.